-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPrims Algorithm.cpp
84 lines (80 loc) · 1.74 KB
/
Prims Algorithm.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include<bits/stdc++.h>
using namespace std;
int V=5;
int findMinimum(int key[],bool visited[])
{
int i,minimum=INT_MAX,keyval;
for(i=0;i<V;i++)
{
if(minimum>key[i] && visited[i]==false)
{
minimum=key[i];
keyval=i;
}
}
return keyval;
}
void printResult(int parent[],int graph[10][10])
{
int i;
cout<<"\n FROM TO COST\n\n";
for(i=1;i<V;i++)
{
cout<<" "<<i<<" --- "<<parent[i]<<"\t "<<graph[i][parent[i]]<<' ';
cout<<endl;
}
}
void Prim(int graph[10][10])
{
int parent[V],i,k;
int key[V];
bool visited[V];
for(i=0;i<V;i++)
{
key[i]=INT_MAX;
visited[i]=false;
}
key[0]=0;
parent[0]=-1;
for(i=0;i<V-1;i++)
{
int u = findMinimum(key,visited);
visited[u]=true;
for(k=0;k<V;k++)
{
if(graph[u][k] && visited[k]==false && key[k]>graph[u][k])
{
parent[k]=u;
key[k]=graph[u][k];
}
}
}
printResult(parent,graph);
}
int main()
{
int graph[10][10],u,v,cost,i,j;
cout<<"\n\n\t\t PRIM'S MINIMUM SPANNING TREE\n\t\t ---- - -------- ----";
cout<<"\n\n\t Enter the number of nodes :";
cin>>V;
cout<<"\n\nEnter the (u,v) end it with (-1,-1) : \n";
for(i=0;i<V;i++)
{
for(j=0;j<V;j++)
{
graph[i][j]=0;
}
}
for(;;)
{
cout<<"Enter (u,v) : ";
cin>>u>>v;
if(u==-1 || v==-1)
break;
cout<<"\n Enter its cost : ";
cin>>cost;
graph[u][v]=cost;
graph[v][u]=cost;
}
Prim(graph);
}